home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Think Class Libraries / Waste TCL r2 / WASTEEdit ƒ / CEditPane.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-30  |  531 b   |  27 lines  |  [TEXT/KAHL]

  1. /****
  2.  * CEditPane.h
  3.  *
  4.  *    A text edit pane for a tiny editor.
  5.  *
  6.  ****/
  7.  
  8.  
  9. #define _H_CEditPane
  10.  
  11. #include "CWASTEText.h"
  12.  
  13. struct CEditPane : CWASTEText {
  14.  
  15.  
  16.                                 /** Instance Methods **/
  17.                                     /** Contruction/Destruction **/
  18.     void    IEditPane(CView *anEnclosure, CBureaucrat *aSupervisor);
  19.  
  20.                                     /** Command **/
  21.     void    DoCommand(long theCommand);
  22.  
  23.                                     /** Mouse and Keystrokes **/
  24.     void    DoKeyDown(char theChar, Byte keyCode, EventRecord *macEvent);
  25.     void    DoAutoKey(char theChar, Byte keyCode, EventRecord *macEvent);
  26. };
  27.